body{
	background: #086fe4a2;
}

header {
	background: #021224;
	padding: 2px;
	margin: none;
	width: 100%;
	display: flex;
	justify-content: space-between;
	text-decoration: none;
}
nav {
	display: flex;
	align-items: end;
	flex-basis: 300px;
	padding: 5px;
}
nav a{
	padding-right: 20px;
	color:#3288eb;
	text-decoration: none;
}
nav a:hover{
	color: rgb(66, 195, 247);
}
.imagen2 {
	padding: 5px;
	text-align: left;
	height: 100px;
	width: 180px;
	background: #021224;
}
aside {
	float: left;
	flex-basis: 20px;
	flex-grow: 1;
	flex-shrink: 0;
	padding: 10px 10px 10px 10px;
	display: flex;
	
}
.imagen {
	float: left;
	padding: 5px;
	text-align: center;
	width: 80%;
	margin-left: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 2px 4px 15px gray; 
	transform: rotate(-2deg);
}
main {
	float: left;
	display: flex;
	
	
}

.menu {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	height: 300px; /* Ajusta según el tamaño que desees */
	position: relative;
  }
  
  .menu img {
	width: auto;
	height: 100%;
	position: absolute;
	transition: opacity 0.5s ease;
	opacity: 0;
  }
  
  .menu img.active {
	opacity: 1;
  }

.correo {
	display: flex;
	margin: 30px;
	width: 120px;
	height: 120px;
}

.correo p {
	display: flex;
	margin: 30px;
	font-size: 20px;
	font-family: cursive;	
}
.correo a {
	margin: 30px;
	text-decoration: solid;
	font-family: 'Times New Roman';
}



iframe {
	display: flex;
	margin: 1px;
	width: 500px;
	height: 400px;
	margin-top: 80px;
	
}
footer {
	
    display: flex;
    font-size:  11px;
    font-family: 'Times New Roman', Times, serif ;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    clear: left;
	flex-grow: 1;
	background: #021224;
	height: 70px;
	padding-bottom: 20px;
}
.imagen3 {
	display: flex;
	padding: 1px;
	text-align: center;
	height: 40px;
	width: 40px;
	justify-content: space-between;
}
.flex-fo {
	display: flex;
    margin: 5px;
    flex-direction: row;
    width: 200px;  
    color:#3288eb;  

}


/*------------------------------------------------------------------------------*/

@media screen and (min-width:  700px){
		.content {
			display: grid;
			grid-template-rows: 80px 1fr 1fr 1fr 1fr 80px;
			grid-template-columns: repeat(3, 1fr);
			}

		.main {
			grid-row: 2 / 6;
			grid-column: 1 / span 3 ;  
			}
		
		.iframe {
			grid-row: 2 / 6;
			grid-column: 1 / span 3 ;  
			
			}
		.header {
			grid-row: 2 / 6;
			grid-column: 1/ span 3 ;
			
			}
		.footer {
			grid-row: 6 / 7;
			grid-column: 1 / span 3 ;
			
			}
}

/*------------------------------------------------------------------------------*/

